home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / thor12.zip / THOR.LHA / rexx / changewindow.thor < prev    next >
Text File  |  1994-03-03  |  847b  |  29 lines

  1. /*
  2. **  changewindow.thor - will let you change dimensions and position on
  3. **                        most windows in THOR.
  4. **
  5. **    Will return 0 on success, and 10 if the window given was unknown.
  6. **  Dimensions will be forced within the allowed range.
  7. **
  8. **    Template:
  9. **
  10. **    WINDOW/A,LEFTEDGE/N,TOPEDGE/N,WIDTH/N,HEIGHT/N
  11. **
  12. **    WINDOW can be one of the following:
  13. **
  14. **  MAINWINDOW        - The main reader window
  15. **  CONFWINDOW        - The window with the list of conferences
  16. **  NEWFILESWINDOW  - The window with the list of new files
  17. **  MSGLISTWINDOW   - The window listing the messages in each conference
  18. **  DOCKWINDOW      - The function dock window (can not be resized)
  19. **
  20. */
  21.  
  22. address "THOR.01"
  23.  
  24. CHANGEWINDOW WINDOW mainwindow LEFTEDGE 10 TOPEDGE 50 WIDTH 400 HEIGHT 400
  25.  
  26. CHANGEWINDOW WINDOW dockwindow LEFTEDGE 600 TOPEDGE 500
  27.  
  28. CHANGEWINDOW WINDOW confwindow HEIGHT 200
  29.